Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@babel/runtime-corejs2
Advanced tools
babel's modular runtime helpers with core-js@2 polyfilling
@babel/runtime-corejs2 is a library that provides a runtime for Babel that includes polyfills for ECMAScript features using core-js@2. It helps to avoid code duplication and reduce the size of the compiled code by providing helpers and polyfills as separate modules.
Polyfilling ECMAScript features
This feature allows you to polyfill ECMAScript features like Map and Set, ensuring compatibility with older environments that do not support these features natively.
import 'core-js/es6/map';
import 'core-js/es6/set';
const map = new Map();
const set = new Set();
Helper functions
This feature provides helper functions like classCallCheck to ensure that classes are instantiated correctly, which is useful for maintaining compatibility with older JavaScript environments.
import _classCallCheck from '@babel/runtime-corejs2/helpers/classCallCheck';
class MyClass {
constructor() {
_classCallCheck(this, MyClass);
}
}
Async/Await support
This feature provides support for async/await syntax by transforming it into generator functions, which are compatible with older JavaScript environments.
import _asyncToGenerator from '@babel/runtime-corejs2/helpers/asyncToGenerator';
import regeneratorRuntime from 'regenerator-runtime';
const asyncFunction = _asyncToGenerator(function* () {
const result = yield fetch('https://api.example.com/data');
return result.json();
});
asyncFunction().then(data => console.log(data));
@babel/runtime is a similar package that provides the same runtime helpers and polyfills but uses core-js@3 instead of core-js@2. It is more up-to-date and recommended for new projects.
core-js is a modular standard library for JavaScript that includes polyfills for ECMAScript features. It can be used directly to polyfill features without relying on Babel's runtime.
regenerator-runtime is a runtime library for transforming generator functions and async/await syntax. It is often used in conjunction with Babel to provide support for these features in older environments.
babel's modular runtime helpers with core-js@2 polyfilling
See our website @babel/runtime-corejs2 for more information.
Using npm:
npm install --save @babel/runtime-corejs2
or using yarn:
yarn add @babel/runtime-corejs2
v7.26.0 (2024-10-25)
babel-core
, babel-generator
, babel-parser
, babel-plugin-syntax-import-assertions
, babel-plugin-syntax-import-attributes
, babel-preset-env
, babel-standalone
, babel-types
babel-core
babel-compat-data
, babel-plugin-proposal-regexp-modifiers
, babel-plugin-transform-regexp-modifiers
, babel-preset-env
, babel-standalone
babel-parser
startIndex
parser option (@DylanPiercey)babel-generator
, babel-parser
, babel-plugin-syntax-flow
babel-helpers
, babel-preset-typescript
, babel-runtime-corejs3
import()
in rewriteImportExtensions
(@liuxingbaoyu)babel-generator
, babel-parser
@babel/generator
(@nicolo-ribaudo)babel-core
babel-plugin-proposal-json-modules
, babel-plugin-transform-json-modules
, babel-standalone
proposal-json-modules
to transform-json-modules
(@nicolo-ribaudo)babel-code-frame
, babel-highlight
@babel/highlight
in @babel/code-frame
(@nicolo-ribaudo)babel-generator
, babel-parser
, babel-types
kind
to TSModuleDeclaration
(@liuxingbaoyu)babel-helper-module-transforms
, babel-plugin-transform-modules-commonjs
FAQs
babel's modular runtime helpers with core-js@2 polyfilling
We found that @babel/runtime-corejs2 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.